home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~4.z / update~4 / lib_stdio_test_Makefile < prev    next >
Encoding:
Makefile  |  1989-09-06  |  531 b   |  34 lines

  1. #        Makefile for minix-ST gcc
  2. #
  3. CC = mgcc
  4. CFLAGS = -O -mshort
  5. LFLAGS = -mshort -s -v
  6. ALL = exercise tputc tprintf tfwrite texit
  7. #
  8. all : $(ALL)
  9. timing:        tputc tprintf tfwrite texit
  10.  
  11. #
  12. exercise:    exercise.o
  13.     $(CC) $(LFLAGS) -o exercise exercise.o
  14. #
  15. #
  16. texit:    texit.o
  17.     $(CC) $(LFLAGS) -o texit texit.o
  18. #
  19. tputc:    tputc.o
  20.     $(CC) $(LFLAGS) -o tputc tputc.o
  21. #
  22. tprintf:    tprintf.o
  23.     $(CC) $(LFLAGS) -o tprintf tprintf.o
  24. #
  25. tfwrite:    tfwrite.o
  26.     $(CC) $(LFLAGS) -o tfwrite tfwrite.o
  27. #
  28.  
  29. clean:
  30.     rm -f *.o
  31.  
  32. realclean : clean
  33.     rm -f $(ALL) report core
  34.